home *** CD-ROM | disk | FTP | other *** search
- function quitGame(score)
- {
- if(this != _level0)
- {
- _level0.quitGame(score);
- }
- stopAllSounds();
- gotoAndStop(1);
- }
- function sendScore(score)
- {
- if(this != _level0)
- {
- _level0.sendScore(score);
- }
- }
- var basePath = !(_url.indexOf("file:///") > -1 && _level0 == _root) ? "./" : "../";
- if(_level0.filePath != null)
- {
- basePath = _level0.filePath;
- }
- var splashTime = 8;
- var doPerformanceTest = false;
- var bytesToLoad = getBytesTotal();
- if(_level0.VR_ENABLED)
- {
- _global.VR_ON_LIVES = _level0.getVR("wb2_lives");
- _global.VR_ON_SHIELD = _level0.getVR("wb2_shield");
- _global.VR_ON_PLATFORMS = _level0.getVR("wb2_platforms");
- _global.VR_ON_EMP = _level0.getVR("wb2_emp");
- }
- else
- {
- _global.VR_ON_LIVES = true;
- _global.VR_ON_SHIELD = true;
- _global.VR_ON_PLATFORMS = true;
- _global.VR_ON_EMP = true;
- }
- nextFrame();
-